home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part2 / 17421 < prev    next >
Encoding:
Text File  |  1996-08-05  |  583 b   |  27 lines

  1. Path: news.bs.tpl.net!news
  2. From: Dieter Lⁿcking <luecking@braunschweig.netsurf.de>
  3. Newsgroups: comp.lang.c++
  4. Subject: bitfield
  5. Date: Mon, 15 Apr 1996 22:44:55 +0200
  6. Organization: IRD InterNet Services GmbH
  7. Message-ID: <3172B547.1F54@braunschweig.netsurf.de>
  8. NNTP-Posting-Host: plueckin.braunschweig.netsurf.de
  9. Mime-Version: 1.0
  10. Content-Type: text/plain; charset=us-ascii
  11. Content-Transfer-Encoding: 7bit
  12. X-Mailer: Mozilla 2.01 (Win95; I)
  13.  
  14. Problem:
  15.  
  16.         struct BITS
  17.         {
  18.           int bits : 3;
  19.         };
  20.  
  21.         BITS array[8];
  22.  
  23. How much memory needs array ?
  24.  
  25. Danke Dieter
  26.  
  27.